home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Imaging / Rgn2PlyM.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  575 b   |  35 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Rgn2PlyM.h
  3.  
  4.     Contains:    Converting a Mac Region into an ODPolygon.
  5.  
  6.     Written by:    Jens Alfke
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <2>     12/5/94    jpa        Code review fixes. [1203923]
  13.          <1>     6/15/94    jpa        first checked in
  14.          <1>     3/25/94    JA        first checked in
  15.          <1>     1/31/94    JA        first checked in
  16.  
  17.     To Do:
  18. */
  19.  
  20.  
  21. #pragma once
  22. #ifndef _RGN2POLY_
  23. #define _RGN2POLY_
  24.  
  25. #ifndef __QUICKDRAW__
  26. #include <QuickDraw.h>
  27. #endif
  28.  
  29.  
  30. struct ODPolygon;
  31.  
  32. void Rgn2Poly( RgnHandle rgn, ODPolygon& );
  33.  
  34.  
  35. #endif /*_RGN2POLY_*/